-- Begin Stack Script ——————————————————————————————————————————————
-- same as clicking the arrow buttons ——————————————————————————————
on arrowKey whatKey
if whatKey = "Left" then click at 442,328
if whatKey = "Right" then click at 469,328
end arrowKey
-- same as clicking the return button ——————————————————————————————
on returnKey
click at 498,328
end returnKey
-- intercept enter key —————————————————————————————————————————————
-- offer help to the lost ——————————————————————————————————————————
on mouseUp
global clickTime
if the ticks - clickTime < 50 then exit mouseUp
answer "Click one of the Arrow buttons." with "Help" or "OK"
-- End Stack Script ————————————————————————————————————————————————